Ollie stores all user configuration and custom extensions in a dedicated directory on your machine. Nothing is sent to the cloud unless you explicitly choose a cloud AI provider.
~/.ollie-suite/ DirectoryThis is your personal Ollie home. It's created automatically on first launch:
| Path | Purpose |
|---|---|
config.json |
IDE settings (workspace path, theme, layout preferences). |
agents/ |
Custom user-created agents. Drop .json files here to instantly add
new agents without modifying Ollie's source. |
tools/ |
User-defined tools. Custom scripts and utilities that your agents can invoke. |
mango_config.json |
Configuration for the Mango autonomous agent (vision settings, loop parameters). |
Creating a custom agent is as simple as placing a JSON file in ~/.ollie-suite/agents/:
{
"name": "SQL Optimizer",
"system_prompt": "You are an expert database engineer...",
"tools": ["read_file", "run_command", "grep_search"]
}
The agent will appear automatically in the Agent Manager the next time Ollie loads.
~/.ollie-suite/ stays on your machine.
[!TIP]
Portable Setup: Back up or sync your ~/.ollie-suite/ directory to carry your agents, tools, and
preferences between machines.